Euler Problem 62

The cube, 41063625 (345^3), can be permuted to produce two other cubes: 56623104 (384^3) and 66430125 (405^3). In fact, 41063625 is the smallest cube which has exactly three permutations of its digits which are also cube.

Find the smallest cube for which exactly five permutations of its digits are cube.


In [1]:
from collections import defaultdict
cubes = defaultdict(list)
for n in range(1, 10000):
    cube = n*n*n
    key = ''.join(sorted(str(cube)))
    cubes[key].append(cube)
print (min(cubes[key][0] for key in cubes if len(cubes[key]) == 5))


127035954683

In [ ]: